VectorMultiplyDivide
You can use theVectorMultiplyDivide
function to calculate the quotient of the dot product of two vectors and a divisor.
long *VectorMultiplyDivide(long count, const long *vector1, long step1, const long *vector2, long step2, long divisor);
count
- The size of each vector.
vector1
- A pointer to one of the two vectors.
step1
- The index increment for the
vector1
vector.vector2
- A pointer to the second of two vectors.
step2
- The index increment for the
vector
2 vector.divisor
- The number by which the dot product is to be divided.
- function result
- The quotient of the dot product of two vectors and a divisor.
DESCRIPTION
TheVectorMultiplyDivide
function calculates the quotient of a dot product of parametersvector1
andvector2
and adivisor
parameter. The size of each vector is given by thecount
parameter. The index increment is given by the parametersstep1
andstep2
, respectively. If thecount
parameter is negative, the terms are alternated. This is equivalent to
WideDivide(VectorMultiply(),divisor)